home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rpc_selection.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  85 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10231);
  10.  script_version ("$Revision: 1.13 $");
  11.  
  12.  name["english"] = "selection service";
  13.  name["francais"] = "Service selection";
  14.  script_name(english:name["english"], francais:name["francais"]);
  15.  
  16.  desc["english"] = "
  17. The selection RPC service is running. 
  18. This service has a security hole that could
  19. allow an attacker to remotely sniff the data
  20. selected from within a SunView session.
  21.  
  22. *** No security hole regarding this program has been tested,
  23. *** so this might be a false positive.
  24.  
  25. Solution : We suggest that you disable this service.
  26. Risk factor : High";
  27.  
  28.  
  29.  desc["francais"] = "
  30. Le service RPC selection tourne.
  31. Ce service a un bug qui permet
  32. α un pirate de sniffer les donnΘes
  33. selectionnΘes dans une session SunView.
  34.  
  35. * AUCUN PROBLEME DE SECURITE 
  36.   N'A ETE TESTE, DONC CETTE
  37.   ALERTE EST PEUT ETRE 
  38.   FAUSE *
  39.  
  40. Il est recommandΘ que vous dΘsactiviez
  41. ce service.
  42.  
  43. Facteur de risque : ElevΘ";
  44.  
  45.  
  46.  script_description(english:desc["english"], francais:desc["francais"]);
  47.  
  48.  summary["english"] = "Checks the presence of a RPC service";
  49.  summary["francais"] = "VΘrifie la prΘsence d'un service RPC";
  50.  script_summary(english:summary["english"], francais:summary["francais"]);
  51.  
  52.  script_category(ACT_GATHER_INFO);
  53.  
  54.  
  55.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  56.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  57.  family["english"] = "RPC"; 
  58.  family["francais"] = "RPC";
  59.  script_family(english:family["english"], francais:family["francais"]);
  60.  script_dependencie("rpc_portmap.nasl");
  61.  script_require_keys("rpc/portmap");
  62.  exit(0);
  63. }
  64.  
  65. #
  66. # The script code starts here
  67. #
  68. include("misc_func.inc");
  69.  
  70.  
  71.  
  72. RPC_PROG = 100015;
  73. tcp = 0;
  74. port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_UDP);
  75. if(!port){
  76.     port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_TCP);
  77.     tcp = 1;
  78.     }
  79.  
  80. if(port)
  81. {
  82.  if(tcp)security_hole(port);
  83.  else security_hole(port, protocol:"udp");
  84. }
  85.